body.user main .page-inner{
  overflow-y: auto;
}
/* 写真を追加 */
.files-list {
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: 24px 16px 8px;
  margin-right: 9.11%;
  display: none;
}

.files-list ul {
  display: flex;
  flex-wrap: wrap;
}

.files-list .file-img {
  width: calc((100% - 36px) / 4);
  height: 91px;
  background-color: #F5F5F5;
  position: relative;
  margin-right: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.files-list .file-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.files-list .file-img:nth-of-type(4n) {
  margin-right: 0;
}

.files-list .file-img .close {
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
}

.file-upload {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

.file-upload input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 33px;
  cursor: pointer;
}

.file-upload .b-btn {
  font-size: 14px;
  position: relative;
  z-index: 9;
}

.b-btn {
  border-color: #12A3BF;
  color: #12A3BF;
  cursor: pointer;
}
.b-btn:active,
.b-btn:hover,
.b-btn:focus{
  background: #CAE7EA;
  color: #12A3BF;
  border-color: #CAE7EA;
}

textarea.text-area {
  width: 100%;
  min-height: 141px;
}

.width-half {
  width: 50%;
}

.grey{
  color: #8588A1;
}

@media screen and (max-width: 768px){
  .files-list{
    margin-right: 0;
  }
}